home *** CD-ROM | disk | FTP | other *** search
/ FishMarket 1.0 / FishMarket v1.0.iso / fishies / 151-175 / disk_172 / spiff / spiff.c.orig < prev    next >
Text File  |  1992-05-06  |  7KB  |  342 lines

  1. /*                        Copyright (c) 1988 Bellcore
  2. **                            All Rights Reserved
  3. **       Permission is granted to copy or use this program, EXCEPT that it
  4. **       may not be sold for profit, the copyright notice must be reproduced
  5. **       on copies, and credit should be given to Bellcore where it is due.
  6. **       BELLCORE MAKES NO WARRANTY AND ACCEPTS NO LIABILITY FOR THIS PROGRAM.
  7. */
  8.  
  9.  
  10. #ifndef lint
  11. static char rcsid[]= "$Header: spiff.c,v 1.1 88/09/15 11:33:51 daniel Rel $";
  12. #endif
  13.  
  14.  
  15. #include <stdio.h>
  16. #include "misc.h"
  17. #include "flagdefs.h"
  18. #include "parse.h"
  19. #include "edit.h"
  20. #include "line.h"
  21. #include "token.h"
  22. #include "tol.h"
  23. #include "command.h"
  24. #include "compare.h"
  25. #include "exact.h"
  26. #include "miller.h"
  27. #include "visual.h"
  28. #include "output.h"
  29.  
  30. extern void _Y_doargs();
  31.  
  32. static int _Y_eflag = 0;    /* use exact match algorithm */
  33. static int _Y_vflag = 0;    /* use visual mode */
  34.  
  35. /*
  36. **    this is the set of flags that gets used throughout the top module
  37. **    as well as being used to communicate between modules.
  38. */
  39. static int _Y_flags;
  40.  
  41. main(argc,argv)
  42. int argc;
  43. char *argv[];
  44. {
  45.     E_edit edit_end;
  46.     char *filename[2];
  47.  
  48.     int max_d;     /* max number of differences allowed */
  49.     int i;        /* loop counter */
  50.  
  51.     /*
  52.     **    parse the command line
  53.     */
  54.     _Y_doargs(argc,argv,&(filename[0]),&(filename[1]),&max_d);
  55.  
  56.     /*
  57.     **    initialize the default tolerance if it
  58.     **        hasn't been set already.
  59.     */
  60.     T_initdefault();
  61.  
  62.     /*
  63.     **    read and then parse the files
  64.     */
  65.  
  66.     /*
  67.     **    L_initfile return a code that indicates if the
  68.     **    entire file was read or not
  69.     **
  70.     **    P_fileparse also knows how to start at someplace other
  71.     **        than the first line of file
  72.     **
  73.     **    Taken together, this is enough to do step our way
  74.     **        through the file using an exact match algorithm.
  75.     **
  76.     **    Oh well, someday . . .
  77.     */
  78.     for(i=0;i<=1;i++)
  79.     {
  80.         /*
  81.         **    read the file into core
  82.         */
  83.         (void) L_init_file(i,filename[i]);
  84.         K_settmax(i,0);        /* start tokens at 0 */
  85.         /*
  86.         **    and parse the files into tokens
  87.         */
  88.         P_file_parse(i,0,L_getrlmax(i),_Y_flags);
  89.     }
  90.  
  91.     if (_Y_vflag)
  92.     {
  93.         return(V_visual(_Y_flags));
  94.     }
  95.  
  96.     /*
  97.     **    if max_d was not set on the command line
  98.     **        set it to be as large as is possible
  99.     **        since the most changes possible would
  100.     **        be to delete all the tokens in the
  101.     **        first file and add all the tokens from
  102.     **        the second, the max possible is the
  103.     **        sum of the number of tokens in the
  104.     **        two files.
  105.     */
  106.     if (-1 == max_d)
  107.         max_d = K_gettmax(0) + K_gettmax(1);
  108.  
  109.     if (_Y_eflag)
  110.     {
  111.         edit_end = Q_do_exact(K_gettmax(0),K_gettmax(1),
  112.                     max_d,_Y_flags);
  113.     }
  114.     else
  115.     {
  116.         edit_end = G_do_miller(K_gettmax(0), K_gettmax(1),
  117.                      max_d,_Y_flags);
  118.     }
  119.  
  120.     if (E_NULL != edit_end)
  121.     {
  122.         O_output(edit_end,_Y_flags);
  123.         return(1);
  124.     }
  125.     return(0);
  126. }
  127.  
  128. /*
  129. **    break a string into individual lines and feed
  130. **        them to the command module
  131. */
  132. static void
  133. _Y_cmdlines(from)
  134. char *from;
  135. {
  136.     char buf[Z_LINELEN]; 
  137.     char *to;
  138.     while ('\0' != *from)
  139.     {
  140.         /*
  141.         **    copy line into buf
  142.         */
  143.         to = buf;
  144.         while (('\0' != *from) && ('\n' != *from))
  145.         {
  146.             *to++ = *from++;
  147.         }
  148.         *to = '\0';    /* terminate the line */
  149.  
  150.         /*
  151.         **    hand the line to the command module
  152.         */
  153.         C_addcmd(buf);
  154.         /*
  155.         **    skip the newline
  156.         */
  157.         if ('\n' == *from)
  158.         {
  159.             from++;
  160.         }
  161.     }
  162. }
  163.  
  164. /*
  165. **    this useful macro handle arguements that are adjacent
  166. **    to a flag or in the following word e.g --
  167. **
  168. **        -a XXX 
  169. **    and
  170. **        -aXXX 
  171. **
  172. **    both work when SETPTR is used. 
  173. */
  174. #define SETPTR    {if(strlen(argv[1]) == 2) {argv++;argc--;ptr=argv[1];}else ptr=(&argv[1][2]);}
  175.  
  176. static void
  177. _Y_doargs(argc,argv,file1,file2,max_d)
  178. int argc;
  179. char *argv[];
  180. char **file1,**file2;
  181. int *max_d;
  182. {
  183.     char *ptr;
  184.  
  185.     /*
  186.     **    mark maximum number of tokens as being unset
  187.     */
  188.     *max_d = -1;
  189.  
  190.     while (argc > 1 && argv[1][0] == '-')
  191.     {
  192.         switch (argv[1][1])
  193.         {
  194.             case 't':
  195.                 _Y_flags |= U_TOKENS;
  196.                 break;
  197.             case 'w':
  198.                 _Y_flags |= U_INCLUDE_WS;
  199.                 break;
  200.  
  201.             case 'b':
  202.                 _Y_flags |= U_BYTE_COMPARE;
  203.                 break;
  204.  
  205.             case 'c':
  206.                 _Y_flags |= U_NO_CASE;
  207.                 break;
  208.             case 'd' :
  209.                 _Y_flags |= U_NEED_DECIMAL;
  210.                 break;
  211.             case 'm' :
  212.                 _Y_flags |= U_INC_SIGN;
  213.                 break;
  214.             case 'a':
  215.                 SETPTR;
  216.                 T_defatol(ptr);
  217.                 break;
  218.             case 'r':
  219.                 SETPTR;
  220.                 T_defrtol(ptr);
  221.                 break;
  222.             case 'i':
  223.                 T_defitol();
  224.                 break;
  225.             case 'e' :
  226.                 _Y_eflag = 1;
  227.                 break;
  228.             case 'v' :
  229.                 _Y_vflag = 1;
  230.                 break;
  231.             case 'q' :
  232.                 Z_setquiet();
  233.                 break;
  234.             case 's' :
  235.                 SETPTR;
  236.                 _Y_cmdlines(ptr);
  237.                 break;
  238.             case 'f' :
  239.             {
  240.                 extern FILE *fopen();
  241.                 char buf[Z_LINELEN];
  242.                 FILE *cmdfile;
  243.                 SETPTR;
  244.                 if ((FILE*) NULL ==
  245.                     (cmdfile = fopen(ptr,"r")))
  246.                 {
  247.                     Z_fatal("can't open command file\n");
  248.                 }
  249.                 while ((char*) NULL !=
  250.                     (char*) fgets(buf,Z_LINELEN,cmdfile))
  251.                 {
  252.                     C_addcmd(buf);
  253.                 }
  254.                 (void) fclose(cmdfile);
  255.                 break;
  256.             }
  257.             /*
  258.             **    useful commands for
  259.             **     the C programming language
  260.             */
  261.             case 'C' :
  262.                 C_addcmd("literal  \"   \"    \\ ");
  263.                 C_addcmd("comment  /*  */     ");
  264.                 C_addcmd("literal  &&         ");
  265.                 C_addcmd("literal  ||         ");
  266.                 C_addcmd("literal  <=         ");
  267.                 C_addcmd("literal  >=         ");
  268.                 C_addcmd("literal  !=         ");
  269.                 C_addcmd("literal  ==         ");
  270.                 C_addcmd("literal  --         ");
  271.                 C_addcmd("literal  ++         ");
  272.                 C_addcmd("literal  <<         ");
  273.                 C_addcmd("literal  >>         ");
  274.                 C_addcmd("literal  ->         ");
  275.                 C_addcmd("addalpha _         ");
  276.                 C_addcmd("tol      a0          ");
  277.                 break;
  278.             /*
  279.             **    useful commands for
  280.             **     the Bourne shell programming language
  281.             */
  282.             case 'S' :
  283.                 C_addcmd("literal  '    '    \\    ");
  284.                 C_addcmd("comment  #    $    ");
  285.                 C_addcmd("tol      a0         ");
  286.                 break;
  287.             /*
  288.             **    useful commands for
  289.             **     the Fortran programming language
  290.             */
  291.             case 'F' :
  292.                 C_addcmd("literal  '    '     ' ");
  293.                 C_addcmd("comment  ^C   $    ");
  294.                 C_addcmd("tol      a0         ");
  295.                 break;
  296.             /*
  297.             **    useful commands for
  298.             **     the Lisp programming language
  299.             */
  300.             case 'L' :
  301.                 C_addcmd("literal  \"     \"    ");
  302.                 C_addcmd("comment  ;     $    ");
  303.                 C_addcmd("tol      a0         ");
  304.                 break;
  305.             /*
  306.             **    useful commands for
  307.             **     the Modula-2 programming language
  308.             */
  309.             case 'M' :
  310.                 C_addcmd("literal '     '    ");
  311.                 C_addcmd("literal \"    \"    ");
  312.                 C_addcmd("comment (*    *)    ");
  313.                 C_addcmd("literal :=        ");
  314.                 C_addcmd("literal <>        ");
  315.                 C_addcmd("literal <=        ");
  316.                 C_addcmd("literal >=        ");
  317.                 C_addcmd("tol      a0         ");
  318.                 break;
  319.             case '0':
  320.             case '1':
  321.             case '2':
  322.             case '3':
  323.             case '4':
  324.             case '5':
  325.             case '6':
  326.             case '7':
  327.             case '8':
  328.             case '9':
  329.                 *max_d = atoi(&argv[1][1]);
  330.                 break;
  331.             default:
  332.                 Z_fatal("don't understand arguments\n");
  333.         }
  334.         ++argv;
  335.         --argc;
  336.     }
  337.     if (argc != 3)
  338.         Z_fatal ("spiff requires two file names.\n");
  339.     *file1 = argv[1];
  340.     *file2 = argv[2];
  341. }
  342.